home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-02-12 | 677 b | 36 lines | [TEXT/CWIE] |
- ///--------------------------------------------------------------------------------------
- // Simple.h
- //
- // By: Tony Myles
- //
- // Copyright © 1993 Tony Myles, All rights reserved worldwide.
- ///--------------------------------------------------------------------------------------
-
-
- #ifndef __SIMPLE__
- #define __SIMPLE__
-
- #ifndef __WINDOWS__
- #include <Windows.h>
- #endif
-
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- void CreateWindow(void);
- void SetUpSpriteWorld(void);
- void CreateBallSprite(void);
- void AddSprites(void);
- void RunAnimation(void);
- void CleanUp(void);
-
- SW_FUNC void BallSpriteMoveProc(SpritePtr ballSpriteP);
-
- #ifdef __cplusplus
- }
- #endif
-
-
- #endif /* __APPLICATION__ */